home *** CD-ROM | disk | FTP | other *** search
/ Mac Cube 5: Home Applications / MacCube Volume 5: Home Applications.iso / Home / Personal Log v2.0.2 ƒ / Misc Files / CreateLargeLogFile.txt next >
Text File  |  1995-05-29  |  278b  |  11 lines

  1. tell application "Personal Log v2.0"
  2.     activate
  3.     repeat with i from 1 to 150
  4.         create new entry
  5.         set numStr to i as string
  6.         set entry subject to "Entry #" & numStr keywords to {"large", "file", numStr}
  7.         insert text "This is entry #"&numStr
  8.         record entry
  9.     end repeat
  10. end tell
  11.